crypto/elliptic/internal/nistec.P224Point.x (field)
21 uses
crypto/elliptic/internal/nistec (current package)
p224.go#L30: x, y, z *fiat.P224Element
p224.go#L36: x: new(fiat.P224Element),
p224.go#L45: x: new(fiat.P224Element),
p224.go#L53: p.x.Set(q.x)
p224.go#L82: p.x.Set(x)
p224.go#L132: xx := new(fiat.P224Element).Mul(p.x, zinv)
p224.go#L146: t0 := new(fiat.P224Element).Mul(p1.x, p2.x) // t0 := X1 * X2
p224.go#L149: t3 := new(fiat.P224Element).Add(p1.x, p1.y) // t3 := X1 + Y1
p224.go#L150: t4 := new(fiat.P224Element).Add(p2.x, p2.y) // t4 := X2 + Y2
p224.go#L159: x3.Add(p1.x, p1.z) // X3 := X1 + Z1
p224.go#L160: y3 := new(fiat.P224Element).Add(p2.x, p2.z) // Y3 := X2 + Z2
p224.go#L190: q.x.Set(x3)
p224.go#L201: t0 := new(fiat.P224Element).Square(p.x) // t0 := X ^ 2
p224.go#L204: t3 := new(fiat.P224Element).Mul(p.x, p.y) // t3 := X * Y
p224.go#L206: z3 := new(fiat.P224Element).Mul(p.x, p.z) // Z3 := X * Z
p224.go#L236: q.x.Set(x3)
p224.go#L244: q.x.Select(p1.x, p2.x, cond)